From 3c91570089ed09b3f61c515724f5d4d1c528c706 Mon Sep 17 00:00:00 2001 From: jluner Date: Sat, 27 May 2017 22:24:40 -0500 Subject: [PATCH] Fix formatting issue blocking build --- src/bin/run.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/run.rs b/src/bin/run.rs index 61023fb5e..96c51bea2 100644 --- a/src/bin/run.rs +++ b/src/bin/run.rs @@ -113,7 +113,8 @@ pub fn execute(options: Options, config: &Config) -> CliResult { // bad and we always want to forward that up. let exit = match err.exit.clone() { Some(exit) => exit, - None => return Err(CliError::new(CargoErrorKind::ProcessErrorKind(err).into(), 101)), + None => return Err( + CliError::new(CargoErrorKind::ProcessErrorKind(err).into(), 101)), }; // If `-q` was passed then we suppress extra error information about -- 2.30.2